@openstream/client
Version:
Openstream Radio Server Client
24 lines • 547 B
TypeScript
export type Output = ({
kind: "none";
} & {
start_on_connect: boolean;
external_relay_url: string | null | undefined;
external_relay_error: string | null | undefined;
}) | ({
kind: "live";
} & {
title: string | null | undefined;
artist: string | null | undefined;
}) | ({
kind: "external-relay";
} & {
url: string;
}) | ({
kind: "playlist";
} & {
file_id: string;
filename: string;
title: string | null | undefined;
artist: string | null | undefined;
});
//# sourceMappingURL=Output.d.ts.map